home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 30
/
Aminet 30 (1999)(Schatztruhe)[!][Apr 1999].iso
/
Aminet
/
dev
/
mui
/
bcc_src.lha
/
Parser
/
LibBase.h
< prev
next >
Wrap
C/C++ Source or Header
|
1997-01-08
|
413b
|
21 lines
#ifndef LIBBASE_H
#define LIBBASE_H
#include <exec/libraries.h>
/*
Dies ist die Basisstruktur für die neue Bibliothek.
Das erste Element ist immer ein struct Library, dann folgen die öffentlich
zugänglichen Elemente. Private Elemente der Bibliothek sollte man in
normalen Variablen deklarieren, nicht in dieser Struktur.
*/
struct LibBase {
struct Library base;
int last_result;
};
#endif